/* FAQ Page Specific Styles */
.faq-subtitle {
    font-size: 21px;
    line-height: 1.381;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.faq-category {
    margin-bottom: 64px;
}

.category-header {
    margin-bottom: 32px;
}

.category-title {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 0em;
    font-family: -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
    margin: 0;
}

.accordion,
.faq-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.faq-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 12px;
    position: relative;
}

.accordion-item {
    border-top: 1px solid #d2d2d7;
    margin: 0;
    padding: 0;
    position: relative;
}

.accordion-item:first-child {
    border-top: none;
}

.accordion-title {
    margin: 0;
}

.accordion-button {
    width: 100%;
    padding: 32px 52px 32px 0;
    text-align: left;
    font-size: 24px;
    line-height: 1.1666666667;
    font-weight: 600;
    letter-spacing: .009em;
    font-family: -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
    background: none;
    border: none;
    color: #1d1d1f;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

@media only screen and (max-width: 1068px) {
    .accordion-button {
        font-size: 21px;
        line-height: 1.19;
        letter-spacing: .011em;
    }
}

@media only screen and (max-width: 734px) {
    .accordion-button {
        font-size: 19px;
        line-height: 1.21;
        letter-spacing: .012em;
        padding: 24px 40px 24px 0;
    }
}

.accordion-button:hover {
    color: #06c;
}

.accordion-button[aria-expanded="false"] {
    color: #1d1d1f;
}

.accordion-button[aria-expanded="true"] {
    color: #1d1d1f;
}

.accordion-title-text {
    flex: 1;
    padding-right: 20px;
}

.accordion-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 8.85px;
    color: #86868b;
}

.accordion-icon-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.accordion-item.expanded .accordion-icon {
    color: #1d1d1f;
}

.accordion-tray {
    height: 0;
    overflow: hidden;
    transition: height 400ms cubic-bezier(0.4, 0, 0.6, 1);
}

.accordion-item.expanded .accordion-tray {
    height: auto;
}

.accordion-content {
    padding-bottom: 32px;
}

@media only screen and (max-width: 734px) {
    .accordion-content {
        padding-bottom: 24px;
    }
}

.accordion-content-paragraph p {
    font-size: 17px;
    line-height: 1.47;
    font-weight: 400;
    letter-spacing: -.022em;
    font-family: -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
    color: #1d1d1f;
    margin: 0 0 1em;
    padding-right: 52px;
}

.accordion-content-paragraph p:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 734px) {
    .accordion-content-paragraph p {
        padding-right: 40px;
    }
}

.faq-answer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.highlight-box {
    background: linear-gradient(to right, #f0f9ff, #ede9fe);
    border: 2px solid #667eea;
    border-radius: 12px;
    padding: 32px;
    margin: 48px 0;
    text-align: center;
}

.highlight-box h3 {
    color: #1e293b;
    font-size: 24px;
    margin-bottom: 16px;
}

.highlight-box p {
    color: #475569;
    font-size: 17px;
    line-height: 1.6;
}

.privacy-highlight {
    background: linear-gradient(135deg, #f0fdf4, #ecfccb);
    border: 2px solid #84cc16;
    padding: 24px;
    border-radius: 12px;
    margin: 32px 0;
}

.privacy-highlight h4 {
    color: #365314;
    margin-bottom: 12px;
    font-size: 18px;
}

.privacy-highlight p {
    color: #4d7c0f;
    margin: 0;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
}

/* App View Overrides */
body.app-view .faq-hero {
    padding: 60px 0 40px;
}

body.app-view .faq-hero h1 {
    font-size: 48px;
}

body.app-view .faq-content {
    padding: 40px 0;
}

/* Responsive */
@media (max-width: 734px) {
    .category-title {
        font-size: 20px;
    }
    
    .faq-question {
        font-size: 18px;
    }
    
    .faq-answer {
        font-size: 15px;
    }
}